home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / eot_radialstar.ifx.pre < prev    next >
Text File  |  2004-08-03  |  1KB  |  44 lines

  1. /*
  2.  * RadialStar.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Radial Star effect.  (A twinkling star.)
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. minradius = GETCLIP('Autofx_RadialStar_Min')
  19. maxradius = GETCLIP('Autofx_RadialStar_Max')
  20. centerx   = GETCLIP('Autofx_RadialStar_CenterX')
  21. centery   = GETCLIP('Autofx_RadialStar_CenterY')
  22.  
  23. IF centerx = "" THEN centerx     = -1
  24. IF centery = "" THEN centery     = -1
  25. IF maxradius = "" THEN maxradius   = 100
  26. IF minradius = "" THEN minradius   = 20
  27.  
  28. Gadget.1    = 'INTEGER 150  5 60 14 "Twinkle Radius Min:"' minradius
  29. Gadget.2    = 'INTEGER 260  5 60 14 "Max:"' maxradius
  30. Gadget.3    = 'INTEGER 150 20 60 14 "Twinkle Center X:"' centerx
  31. Gadget.4    = 'INTEGER 260 20 60 14 "Y:"' centery
  32. Gadget.5    = 'TEXT    185 36  1  1 "(-1,-1 selects the exact center of the image.)" JU=2'
  33. Gadget.6    = 'END'
  34.  
  35. NewComplexRequest '"Twinkle, Twinkle Little Radial Star"' Gadget 370 50
  36. IF rc ~= 0 THEN EXIT rc
  37.  
  38. CALL SETCLIP('Autofx_RadialStar_Min', result.1)
  39. CALL SETCLIP('Autofx_RadialStar_Max', result.2)
  40. CALL SETCLIP('Autofx_RadialStar_CenterX', result.3)
  41. CALL SETCLIP('Autofx_RadialStar_CenterY', result.4)
  42.  
  43. EXIT
  44.